projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9f13a9
)
(syntax-after): Delete. Moved to subr.el.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 9 Sep 2002 23:14:13 +0000
(23:14 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 9 Sep 2002 23:14:13 +0000
(23:14 +0000)
lisp/emacs-lisp/syntax.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/syntax.el
b/lisp/emacs-lisp/syntax.el
index 717ea756b56a4e37a03726dfb1c2f441dd3dacb5..89660e48d7733fc30d0128a292536c3fef060ca4 100644
(file)
--- a/
lisp/emacs-lisp/syntax.el
+++ b/
lisp/emacs-lisp/syntax.el
@@
-282,13
+282,5
@@
Point is at POS when this function returns."
;; (with-current-buffer (or buffer (current-buffer))
;; (syntax-ppss-depth (syntax-ppss))))
-(defun syntax-after (pos)
- "Return the syntax of the char after POS."
- (unless (or (< pos (point-min)) (>= pos (point-max)))
- (let ((st (if parse-sexp-lookup-properties
- (get-char-property pos 'syntax-table))))
- (if (consp st) st
- (aref (or st (syntax-table)) (char-after pos))))))
-
(provide 'syntax)
;;; syntax.el ends here